Anillo 3 - Original

An interactive fiction by Mel Hython (2009) - the Inform 7 source text

Home page

Contents
Previous
Next

Complete text
Section 4 - Zhur el orco

[--------------------------------------------------

Zhur.

Zhur es el primer orco que saldrá
a patrullar desde el campamento
y el que tiene más cosas útiles
encima.

--------------------------------------------------]

A zhur is a orco. It is in Pantano19. It is male.
The description of zhur is "[if the player is zhur]Tu actual portador no es precisamente de tu gusto. [end if]Se trata de un explorador orco de los ejércitos del nigromante. No hay más que verlo para saberlo: indumentaria informal, cara de pasmao, armas en un estado lamentable. Indudablemente la élite del ejército.".
El cadaver of zhur is zhur_muerto.
The printed name of zhur is "orco".

[Y es el orco por defecto]
Does the player mean doing something with zhur: it is very likely.

The drive of zhur is 100. [ se mueve siempre ]
The frequency of zhur is 2. [pero se plantea cada turno]
The zhur is aimless. [aleatorio en principio]
[no hay puertas pero por si acaso]
The openingcapability of zhur is unlockedonly.
The reclosingcapability of zhur is leave.
Understand "portador" as zhur when the player is zhur.

[Estados de un orco... más simple que un arma hecha con un palo y un clavo]
Zhur can be esperando, persiguiendo, patrullando, dominado, muerto.

[Empieza el juego patrullando]
Zhur is patrullando.

[Ha sido poseido?]
Zhur can be antiguo poseso. Zhur is not antiguo poseso.

[Lo activamos desde el principio]
When play begins:
    activate zhur.

[OBJETOS QUE LLEVA:]
The machete and llave are carried by Zhur.

[ACCIONES de Zhur según estado]
[PATRULLANDO]
This is the zhurPatrullando rule:
    if zhur is in the location:
        if the player is not an orco or zhur is antiguo poseso:
            say "[The zhur] grita: 'Zoog! Jusk, jusk! Zoog!' mientras suelta espumarajos por la boca. ¿Eso es que va a atacar? Menudos bichos más asquerosos.";
            change buscando of zhur to 0;
            now Zhur is persiguiendo;
            now Zhur is following;
        otherwise if the player is an orco:
            if a random chance of 1 in 4 succeeds:
                say "[one of][The zhur] grita: '¡[el portador]! ¡Vronk! ¡Vronk!', parece divertido.[or][The zhur] te mira con una sonrisa. Debe ser un orco feliz. Dan ganas de decirle que él, el orco féliz, es el peor de todos los seres, pero probablemente no lo entendería.[or][The zhur] aparta a algunos mosquitos con aspavientos. Como si los mosquitos quisiesen beber apestosa sangre de orco.[or][The zhur] dice: '¿Mongu mongu [el portador] vronkuhg?', parece esperar respuesta; pero no piensas rebajarte a contestarle, desde luego que no.[at random]";
            otherwise:
                hacer que zhur haga de orco;
    otherwise:
        hacer que zhur haga de orco.

[PERSIGUIENDO]
This is the zhurPersiguiendo rule:
    if zhur is in the location:
        change buscando of zhur to 0;
        say "[The zhur] te ataca[if machete is carried by Zhur] con su viejo machete[end if].";
        if a random chance of 8 in 10 succeeds:
            say "Pero falla. Además de asqueroso es patético [if machete is carried by Zhur]con un arma[otherwise]combatiendo[end if].";
        otherwise:
            if the player is nuhur:
                say "Y el ataque resulta mortal. [if machete is carried by Zhur]Su mugrienta espada produce un corte profundo en el pecho del retrasado humano, y sientes como éste se ahoga en su propia sangre[otherwise]Su puño hunde el pecho de Nuhur. Se escuchan costillas rotas y luego sólo estertores[end if]. ";
            otherwise:
                say "Y el ataque resulta mortal. [if machete is carried by Zhur]Su mugrienta espada produce un corte profundo en tu portador, y sientes como se le escapa la vida[otherwise]Su puño hunde el pecho de tu portador. Se escuchan costillas rotas y luego sólo estertores[end if]";
            morir en el pantano;
    otherwise:
        increase buscando of zhur by 1;
         if a random chance of buscando of zhur in 45 succeeds:
            [Zhur se cansa a veces de perseguir]
            now Zhur is patrullando;
            now Zhur is aimless.

[ GENERAL ]
Every turn:
    if the player is not zhur:
        if zhur is patrullando:
            follow zhurPatrullando rule;
        otherwise if zhur is persiguiendo:
            follow zhurPersiguiendo rule.

[REACCIONES del Icalante según estado]